home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / assemblers / cas.lha / makefile < prev    next >
Encoding:
Makefile  |  1993-07-13  |  643 b   |  30 lines

  1. CC=gcc
  2. .c.o:    ds cas das reloc semi nl
  3.     $(CC) -c -g $*.c
  4. DASOBJS=das.o
  5. DSOBJS=ds.o
  6. CASOBJS=cas.o link.o st.o res.o op.o ex.o io.o
  7. RELOCOBJS=reloc.o
  8. SEMIOBJS=semi.o
  9. NLOBJS=nl.o
  10. all:    ds cas das reloc semi nl
  11. das:    $(DASOBJS)
  12.     $(CC) -o das $(DASOBJS)
  13. ds:    $(DSOBJS)
  14.     $(CC) -o ds $(DSOBJS)
  15. cas:    $(CASOBJS)
  16.     $(CC) -o cas $(CASOBJS)
  17. reloc:    $(RELOCOBJS)
  18.     $(CC) -o reloc $(RELOCOBJS)
  19. semi:    $(SEMIOBJS)
  20.     $(CC) -o semi $(SEMIOBJS)
  21. nl:    $(NLOBJS)
  22.     $(CC) -o nl $(NLOBJS)
  23. cas.o:    io.h op.h st.h link.h
  24. link.o:    io.h ex.h res.h st.h
  25. st.o:    io.h ex.h op.h res.h
  26. res.o:    io.h ex.h st.h res.h
  27. op.o:    io.h ex.h st.h res.h op.h
  28. ex.o:    io.h ex.h st.h res.h
  29. io.o:    io.h op.h
  30.